home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ WinNT SP Fix.xpl < prev    next >
Text File  |  2001-04-12  |  950b  |  41 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="1"
  3. "COUNT"="1"
  4. "UIPATH"="System\Advanced System Settings"
  5. "NAME"="Windows Service Pack Fix"
  6. "OSVersion"=010101
  7. "VERSION"="1.04"
  8. "LANGUAGE"="VBScript"
  9. "TEXT 1"="Service Pack"
  10. "DESCRIPTION 1"="If your system reports the wrong Service Pack number, or you have removed the service pack and it still reports it being installed, you can use this plug-in to fix it."
  11. "DESCRIPTION 2"=" "
  12. "WARNING"="1"
  13. "AUTHOR"="Xteq Systems (CptSiskoX)"
  14. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  15. "COMMENT 1"=" "
  16. "COMMENT 2"=" "
  17.  
  18. sP1="HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\CSDVersion"
  19.  
  20. Sub Plugin_Initialize 
  21.  s=RegReadValue(sP1)
  22.  SetUIElement 1,s
  23.  
  24.  
  25. End Sub
  26.  
  27. Sub Plugin_CheckData(ElementIndex)
  28. End Sub
  29.  
  30. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  31.  s=GetUIElement(1)
  32.  Call RegWriteValue(sp1,s,1)
  33.  
  34. End Sub
  35.  
  36. Sub Plugin_Terminate 
  37. End Sub
  38.  
  39.  
  40.  
  41.